home comics writing pictures archive about

IDialogViewModel.cs

Language: C#
Last Modified: 2020-06-27 1:58:36 PM UTC
File Size: 510 bytes
http://www.penguinstew.ca/example/MVVMbase/ViewModelBase/IDialogViewModel.cs
using System;
namespace Penguin.MVVMBase.ViewModelBase
{
/// <summary>
/// Interface for viewModels of dialogs, used to allow the viewModel to request the dialog be closed
/// </summary>
public interface IDialogViewModel: IWindowViewModel
{
#region Events
/// <summary>
/// Event raised to request the dialog be closed
/// </summary>
event EventHandler<RequestDialogCloseArgs> DialogCloseRequested;
#endregion
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19